DataSet.Tables[]

  • 2020-06-23 00:10:15
  • OfStack

DataSet.Tables[0].Rows[0][1] represents the first row (Rows[0]] in Table 1 (because Tables[0] means table 1).

Data for column 2 (Rows[][1]).

DataSet. Tables["tableName"] is specified to get a specific table name. If DataSet has only one table, it is DataSet.Tables[0].


Related articles: